home *** CD-ROM | disk | FTP | other *** search
- // Copyright (C) 1997-2002 Alias|Wavefront,
- // a division of Silicon Graphics Limited.
- //
- // The information in this file is provided for the exclusive use of the
- // licensees of Alias|Wavefront. Such users have the right to use, modify,
- // and incorporate this code into other products for purposes authorized
- // by the Alias|Wavefront license agreement, without fee.
- //
- // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- //
- //
- // Alias|Wavefront Script File
- // MODIFY THIS AT YOUR OWN RISK
- //
- // Creation Date: 15 April 1997
- // Author: mgr
- // $Revision: /main/9 $
- //
- // Description:
- // This script initializes the bit values for selection masks.
- //
- // Return Value:
- // None.
-
- //global proc selectionMaskBitDefines()
- {
- // Geometry Shapes
- global int $gSelectNurbsCurvesBit = 9;
- global int $gSelectNurbsSurfacesBit = 10;
- global int $gSelectCurvesOnSurfacesBit = 11;
- global int $gSelectMeshesBit = 12;
-
- // Components (aka Parts)
- global int $gSelectCVsBit = 28;
- global int $gSelectHullsBit = 29;
- global int $gSelectEditPointsBit = 30;
-
- // Curve and Surface Parts
- global int $gSelectCurveParmPointsBit = 39;
- global int $gSelectCurveKnotsBit = 40;
- global int $gSelectSurfaceParmPointsBit = 41;
- global int $gSelectSurfaceKnotsBit = 42;
- global int $gSelectSurfaceRangeBit = 43;
- global int $gSelectSurfaceEdgeBit = 44;
- global int $gSelectIsoparmsBit = 45;
- global int $gSelectNurbsFaces = 72;
-
- // Mesh parts:
- global int $gSelectMeshVerts = 31;
- global int $gSelectMeshEdge = 32;
- global int $gSelectMeshFaces = 34;
- global int $gSelectMeshUVs = 35;
- global int $gSelectMeshVtxFaces = 70;
-
- // locators
- global int $gSelectXYZLocators = 22;
- global int $gSelectOrientationLocators = 23;
- global int $gSelectUVLocators = 24;
- global int $gSelectDimensions = 25;
-
- global int $gSelectLatticePoints = 46;
- global int $gSelectParticles = 47;
-
- // Pivots & handles
- global int $gSelectJointPivots = 48;
- global int $gSelectScalePivots = 49;
- global int $gSelectRotatePivots = 50;
- global int $gSelectSelectHandles = 51;
-
- // Subdivs:
- global int $gSelectSubdivSurface = 68;
- global int $gSelectSubdivMeshPoints = 36;
- global int $gSelectSubdivMeshEdges = 37;
- global int $gSelectSubdivMeshFaces = 38;
- }
-